home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
library
/
dos
/
math
/
cephes
/
qfloat
/
qhead.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-11-17
|
349 b
|
15 lines
/* Number of 16 bit words in a q type number */
#define NQ 24
/* Number of words in significand area */
#define OMG (NQ-2)
/* Byte offset to least significant word of significand */
#define OFFS (2*OMG+2)
/* Number of bits of precision */
#define NBITS ((OMG-1)*16)
/* Maximum number of decimal digits in conversion */
#define NDEC (NBITS*8/27)